home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / utils / stlogin4.lzh / MAKEFILE.PCC < prev    next >
Text File  |  1993-10-09  |  1KB  |  44 lines

  1. include d:\pure_c\default.mk
  2.  
  3. # override libs in default.mk because we don't need floating point etc.
  4.  
  5. STDLIB  = $(PCL)\pcstdlib.lib
  6.  
  7. CPPFLAGS = -DMINT
  8. CFLAGS   = -P
  9. ARFLAGS  = $(UNIXLIB)
  10.  
  11. UNIXLIB = ux_misc.o termcap.o curses.o pwd.o utmp.o # mind right order !!
  12. LOCALLIB = ux_misc.o modem.o
  13. LDFLAGS  = $(LOCALLIB) $(LIB)\unixlib.lib
  14.  
  15. PROGS    = getty who last more cat tee write talk passwd reboot tail
  16.  
  17. all:    $(PROGS)  unixlib
  18.  
  19. $(PROGS):    $(LOCALLIB)
  20.  
  21. unixlib: $(UNIXLIB)
  22.     $(ARCHIVE) 
  23.     $(LD) $(LDFILE)
  24.     cp $@ $(LIB)\$@.lib
  25.     rm -f $@
  26.     
  27. clean:
  28.     rm -f *.o unixlib
  29.  
  30. veryclean:
  31.     rm -f *.o *.lib *.ttp
  32.  
  33. # This makefile is especially intended for use with the PURE-C compiler and
  34. # the GNUMAKE utility, although it won't be difficult to alter it for any 
  35. # other compiler.
  36. #
  37. # To build all these UNIX like tools it is necessary to have MINT running on
  38. # your system. If you don't have MINT, you cannot use the full functionality
  39. # of the programs and some of them won't run at all.
  40. #
  41. # Any remarks or suggestions about these programs can be send to:
  42. # lemmens@dv.twi.tudelft.nl
  43.  
  44.